home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / comm / pcplus2.zip / NOCHANGE.ASP < prev    next >
Text File  |  1988-01-01  |  992b  |  32 lines

  1. ;*************************************************************************
  2. ;* NOCHANGE.ASP  (C) 1987 DATASTORM TECHNOLOGIES, INC.                   *
  3. ;*                                                                       *
  4. ;* A sample ASPECT script file for logging onto NOCHANGE bulletin boards *
  5. ;*                                                                       *
  6. ;*************************************************************************
  7.  
  8. CLEAR
  9. LOCATE 0 0
  10. BOX 0 0 4 27 14
  11. ATSAY 2 2 14 "Logging onto NOCHANGE..."
  12. LOCATE 6 0
  13.  
  14. IF NOT LINKED
  15.    DIAL "8"                  ;set to your dial dir entry for NOCHANGE
  16. ENDIF
  17.  
  18. PAUSE 1
  19. TRANSMIT "^M"
  20.  
  21. WAITFOR "DO YOU NEED LINEFEEDS AFTER EACH CARRIAGE RETURN (Y/N)"
  22. TRANSMIT "Y^M"
  23.  
  24. WAITFOR "ARE YOU USING A PROGRAM THAT SUPPORTS NOCHANGE GRAPHICS (Y/N)"
  25. TRANSMIT "Y^M"
  26.  
  27. WAITFOR "PLEASE TELL ME YOUR FIRST NAME?"
  28. TRANSMIT "FIRSTNAME;LASTNAME;PASSWORD^"
  29.  
  30. ALARM 2                      ;inform user logon complete
  31.  
  32.